Skip to main content

Create Project Resource Endpoint

Overview

This endpoint allows users to create a new resource for a specific project.

Request Details

HTTP Method

POST

Route

/api/users/[user_id]/projects/[project_id]/resources/[resource_type]

Route Parameters

ParameterTypeRequiredDescription
user_idintegerYesThe ID of the authenticated user
project_idintegerYesThe ID of the project
resource_typestringYesType of resource (e.g., 'user-files', 'template-collections', 'github-installations', 'chat-conversations')

Headers

HeaderValueRequiredDescription
Acceptapplication/jsonYesSpecifies the response format
Content-Typeapplication/jsonYesRequest body format
Cookieneptun-sessionYesSession authentication cookie

Request Body

The request body varies depending on the resource type:

For user-files

{
"user_file_id": 123
}

For template-collections

{
"template_collection_id": 123
}

For github-installations

{
"github_installation_id": 123
}

For chat-conversations

{
"chat_conversation_id": 123
}

Response Format

Response Status Codes

Status CodeDescription
201Successfully created resource
400Bad request (invalid parameters)
401Unauthorized (invalid or missing session)
403Forbidden (user_id mismatch)
404Project not found
500Server error

Success Response (201 Created)

Response varies based on the resource type. See the GET endpoint documentation for response structure details.

Error Response (400 Bad Request)

{
"statusCode": 400,
"message": "Invalid request parameters"
}

Code Examples

cURL Example

curl -X POST "https://neptun-webui.vercel.app/api/users/1/projects/789/resources/user-files" \
-H "Accept: application/json" \
-H "Content-Type: application/json" \
-H "Cookie: neptun-session=your-session-cookie" \
-d '{
"user_file_id": 123
}'

Python Example

import httpx
from typing import Literal, TypedDict, Union
from datetime import datetime

ResourceType = Literal['user-files', 'template-collections', 'github-installations', 'chat-conversations']

class ProjectUserFileRequest(TypedDict):
user_file_id: int

class ProjectTemplateCollectionRequest(TypedDict):
template_collection_id: int

class ProjectGithubInstallationRequest(TypedDict):
github_installation_id: int

class ProjectChatConversationRequest(TypedDict):
chat_conversation_id: int

ResourceRequest = Union[ProjectUserFileRequest, ProjectTemplateCollectionRequest, ProjectGithubInstallationRequest, ProjectChatConversationRequest]

async def create_project_resource(
user_id: int,
project_id: int,
resource_type: ResourceType,
resource_data: ResourceRequest,
session_cookie: str
) -> dict:
url = f"https://neptun-webui.vercel.app/api/users/{user_id}/projects/{project_id}/resources/{resource_type}"

async with httpx.AsyncClient() as client:
response = await client.post(
url,
headers={
"Accept": "application/json",
"Content-Type": "application/json",
"Cookie": f"neptun-session={session_cookie}"
},
json=resource_data
)
response.raise_for_status()
return response.json()

TypeScript/JavaScript Example

type ResourceType = 'user-files' | 'template-collections' | 'github-installations' | 'chat-conversations'

interface ProjectUserFileRequest {
user_file_id: number
}

interface ProjectTemplateCollectionRequest {
template_collection_id: number
}

interface ProjectGithubInstallationRequest {
github_installation_id: number
}

interface ProjectChatConversationRequest {
chat_conversation_id: number
}

type ResourceRequest = ProjectUserFileRequest | ProjectTemplateCollectionRequest | ProjectGithubInstallationRequest | ProjectChatConversationRequest

async function createProjectResource(
userId: number,
projectId: number,
resourceType: ResourceType,
resourceData: ResourceRequest,
sessionCookie: string
): Promise<any> {
const response = await fetch(
`https://neptun-webui.vercel.app/api/users/${userId}/projects/${projectId}/resources/${resourceType}`,
{
method: 'POST',
headers: {
'Accept': 'application/json',
'Content-Type': 'application/json',
'Cookie': `neptun-session=${sessionCookie}`,
},
body: JSON.stringify(resourceData),
}
)

if (!response.ok) {
throw new Error(`HTTP error! status: ${response.status}`)
}

return response.json()
}

Notes

  • The session cookie is required for authentication
  • The project must belong to the specified user
  • The resource_type must be one of the allowed values
  • All IDs must be valid positive integers
  • Required fields vary by resource type:
    • user-files: title, text, language, extension
    • template-collections: name, description
    • github-installations: installation_id, account_name, repository_selection
    • chat-conversations: name, description, model_publisher, model_name
  • The created resource will be automatically associated with the specified project
  • The response will include the created resource with its assigned ID and timestamps